home *** CD-ROM | disk | FTP | other *** search
/ World of Video / World of Video.iso / gfxprograms / 3dprograms / rayshade-4.0 / fixes / fix024 / install-patches
Text File  |  1995-02-13  |  686b  |  22 lines

  1. #!/bin/sh
  2. # installs rayshade.4.0.6 patches for raytracing fractals
  3. # philippe@cs.kuleuven.ac.be - 12 oct 1993
  4.  
  5. cd libshade
  6. files="lex.l shade.c viewing.c viewing.h yacc.y"
  7. for file in $files; do patch $file $file.diff; done
  8.  
  9. cd ../libray/libcommon
  10. files="ray.h transform.c transform.h vecmath.c vector.h"
  11. for file in $files; do patch $file $file.diff; done
  12.  
  13. cd ../libobj
  14. files="Makefile.SH bounds.c bounds.h"
  15. for file in $files; do patch $file $file.diff; done
  16.  
  17. cd ../..
  18. echo "The patches for ray-tracing fractals with rayshade.4.0.6 have been applied"
  19. echo "and the new files added. If you already ran the Configure script, run"
  20. echo "Reconfigure, if you didn't, run Configure now."
  21.  
  22.